home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xgrabsc / checkvm.h < prev    next >
Text File  |  1995-05-09  |  976b  |  41 lines

  1. /*
  2.  * Name - checkvm.h
  3.  *
  4.  * Version:    1.3
  5.  *
  6.  * ccsid:    @(#)checkvm.h    1.3 - 06/25/93 12:54:17
  7.  * from:     ccs/s.checkvm.h
  8.  * date:     06/28/93 09:14:48
  9.  *
  10.  * description:  a routine to check resource availability before attempting
  11.  *               to display a stand-alone image
  12.  */
  13.  
  14.  
  15. char *CheckVM[] = {
  16.   "/checkvm { %% bytesNeeded checkvm -",
  17.   "  /needed exch store",
  18.   "  /used  0 store",
  19.   "  /maximum   0 store",
  20.   "  vmstatus /maximum exch store /used exch store pop",
  21.   "  /avail maximum used sub store  %% amount of vm available",
  22.   "  avail needed lt {",
  23.   "    /str 10 string store",
  24.   "    gsave",
  25.   "    0 inch 8.0 inch translate",
  26.   "    1.0 1.0 scale",
  27.   "    /Courier findfont 18 scalefont setfont",
  28.   "    20 20 moveto",
  29.   "    (There is not enough printer memory for this image.) show",
  30.   "    20 -5 moveto",
  31.   "    needed avail sub 10 str cvrs show",
  32.   "    ( more bytes are needed.) show",
  33.   "    showpage",
  34.   "    grestore",
  35.   "  } if",
  36.   "} def",
  37.   0
  38.   };
  39.  
  40.  
  41.